home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20030409-20031118 / 000219_fdc@columbia.edu_Tue Aug 12 09:57:00 EDT 2003.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  61 lines

  1. Article: 14457 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: Autostart of Kermit?
  6. Date: 12 Aug 2003 09:56:32 -0400
  7. Organization: Columbia University
  8. Lines: 44
  9. Message-ID: <bharmg$igm$1@watsol.cc.columbia.edu>
  10. References: <h1qhjvk1vlpipt31u09338kim16l195b5b@4ax.com> <bhapik$db1$1@watsol.cc.columbia.edu> <v2rhjv45lu9a0e4vr4qs8que330kfrqa1j@4ax.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1060696593 20127 128.59.39.139 (12 Aug 2003 13:56:33 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 12 Aug 2003 13:56:33 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14457
  16.  
  17. In article <v2rhjv45lu9a0e4vr4qs8que330kfrqa1j@4ax.com>,
  18. dgk  <sonicechoesWithNoSpam@hotmail.com> wrote:
  19. : On 12 Aug 2003 09:20:20 -0400, fdc@columbia.edu (Frank da Cruz) wrote:
  20. : >In article <h1qhjvk1vlpipt31u09338kim16l195b5b@4ax.com>,
  21. : >dgk  <sonicechoesWithNoSpam@hotmail.com> wrote:
  22. : >: Is there a way to get Kermit running at machine bootup on 2000 pro? I
  23. : >: can't see how to do it unless someone logs on. Would it have to run as
  24. : >: a service?
  25. : >:
  26. : >Perhaps what you are really looking for is Windows Internet Kermit Service?
  27. : >
  28. : >  http://www.columbia.edu/kermit/wiksd.html
  29. : We have an application written in K95, started by the command line:
  30. : "C:\K95\K95.EXE MM0.KSC". It answers the phone, gets an ID and
  31. : Password, and has a short dialog that sends and receives files. Very
  32. : basic stuff. In fact, the id and passwords are just hardcoded into the
  33. : script, it doesn't even use a database.
  34. : We would like it to start up with the booting of the machine rather
  35. : than have to be started manually. It sure sounds like we want the
  36. : windows service product. Would that be able to use the existing
  37. : scripts?
  38. :
  39. No.  As the above-referenced web page states, WIKSD is only for incoming
  40. Internet connections.
  41.  
  42. I believe you can use the SRVANY utility to set up your script as a service.
  43. But you have to be careful about about access, authentication, and
  44. permissions.
  45.  
  46.   http://www.winnetmag.com/Articles/Index.cfm?ArticleID=7959
  47.  
  48. There might also be issues regarding the program's input and output, and
  49. what happens a connection hangs up.  See the documentation of command-line
  50. options for ways around such problems (esp. the -# option).  There might 
  51. also be consequences for picking the GUI versus the Console version.
  52.  
  53. As an alternative, you might consider K95 Host Mode, which already does
  54. pretty much what you describe.  See the Host Mode documentation in the
  55. Kermit 95 manual.
  56.  
  57. - Frank
  58.